summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/vulnerability_manager_interface.h
blob: c689cf7ece0c1aaed026381b96e26c90ee1b9263 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/cmif_types.h"
#include "core/hle/service/service.h"

namespace Service::NS {

class IVulnerabilityManagerInterface final
    : public ServiceFramework<IVulnerabilityManagerInterface> {
public:
    explicit IVulnerabilityManagerInterface(Core::System& system_);
    ~IVulnerabilityManagerInterface() override;

private:
    Result NeedsUpdateVulnerability(Out<bool> out_needs_update_vulnerability);
};

} // namespace Service::NS